home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Transformers: Revenge of …he Game: Press Kit (USA)
/
Transformers - Revenge of the Fallen - The Game - Press Kit (USA).bin
/
Transformers.swf
/
scripts
/
fl
/
video
/
QueuedCommand.as
< prev
next >
Wrap
Text File
|
2009-06-19
|
807b
|
37 lines
package fl.video
{
public class QueuedCommand
{
public static const LOAD:uint = 1;
public static const STOP:uint = 3;
public static const PLAY_WHEN_ENOUGH:uint = 5;
public static const PLAY:uint = 0;
public static const PAUSE:uint = 2;
public static const SEEK:uint = 4;
public var isLive:Boolean;
public var type:uint;
public var time:Number;
public var url:String;
public function QueuedCommand(param1:uint, param2:String, param3:Boolean, param4:Number)
{
super();
this.type = param1;
this.url = param2;
this.isLive = param3;
this.time = param4;
}
}
}